home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-15 | 709 b | 34 lines | [TEXT/ttxt] |
- *This droplet changes the file creator
- *
- droplet 'Change Document Type'
- *
- * Setup the menu
- *
- a = 'ExPr EDIT ttxt "Define it<I"'
- lval a,$Creator
- menu new,21,0,$Creator
- menuscript 21,'Define Creator'
- $cre = 'ExPr' !! This is the default value
- display 'Creator will be changed to '$cre
- *
- * This is the script that makes the changes
- *
- script 'Change Document Type'
- display #file(typ)' '#file(cre)' '$File
- change cre=$cre
- info
- *
- * This is the script executed by the menu
- * It defines the creator
- *
- script 'Define Creator'
- if #arg(2) = $Creator
- accept a,'Enter 4 character Creator'
- test (#ret) exit
- test (#len(a) != 4) exit
- $cre = a
- else
- $cre = $Creator[#arg(2)]
- end
- display 'Creator will be changed to '$cre
-